diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/rfq-last/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/rfq-last/page.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/rfq-last/page.tsx b/app/[lng]/evcp/(evcp)/rfq-last/page.tsx index 207bc2d4..0297c4f9 100644 --- a/app/[lng]/evcp/(evcp)/rfq-last/page.tsx +++ b/app/[lng]/evcp/(evcp)/rfq-last/page.tsx @@ -37,7 +37,7 @@ interface RfqPageProps { // 탭별 데이터 카운트를 가져오는 함수 async function getTabCounts() { try { - const [allData, generalData, itbData, rfqData] = await Promise.all([ + const [generalData, itbData, rfqData] = await Promise.all([ getRfqs({ page: 1, perPage: 1, sort: [], filters: [], joinOperator: "and", search: "", rfqCategory: "general" }), getRfqs({ page: 1, perPage: 1, sort: [], filters: [], joinOperator: "and", search: "", rfqCategory: "itb" }), getRfqs({ page: 1, perPage: 1, sort: [], filters: [], joinOperator: "and", search: "", rfqCategory: "rfq" }), @@ -51,7 +51,6 @@ async function getTabCounts() { } catch (error) { console.error("Error fetching tab counts:", error); return { - all: 0, general: 0, itb: 0, rfq: 0, |
